home *** CD-ROM | disk | FTP | other *** search
- unit fAbout;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, Buttons, ExtCtrls;
-
- type
- Tf_about = class(TForm)
- Panel1: TPanel;
- BitBtn1: TBitBtn;
- Memo1: TMemo;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- f_about: Tf_about;
-
- implementation
- uses uVersionInformation;
-
- {$R *.DFM}
-
- procedure Tf_about.FormCreate(Sender: TObject);
- var i : tMSResourceNameEnum;
- begin
- memo1.lines.clear;
- with TVersionInformation.instance do begin
- FileName := application.exename;
- for i := low(i) to high(i) do
- memo1.lines.add(MSVerNames[i]+' = '+ Values[MSVerNames[i]]);
- end;
-
- end;
-
- end.
-